[DEPRECATED] Use form field endpoints instead. Retrieves a specific custom field option by id
curl --request GET \
--url https://api.rootly.com/v1/custom_field_options/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "1",
"type": "custom_field_options",
"attributes": {
"custom_field_id": 127,
"value": "Optio sunt ducimus consequuntur.",
"color": "#FBE4A0",
"default": false,
"position": 1,
"updated_at": "2025-12-01T14:15:13.550-08:00",
"created_at": "2025-12-01T14:15:13.550-08:00"
}
}
}Show child attributes
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/custom_field_options/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "1",
"type": "custom_field_options",
"attributes": {
"custom_field_id": 127,
"value": "Optio sunt ducimus consequuntur.",
"color": "#FBE4A0",
"default": false,
"position": 1,
"updated_at": "2025-12-01T14:15:13.550-08:00",
"created_at": "2025-12-01T14:15:13.550-08:00"
}
}
}